home *** CD-ROM | disk | FTP | other *** search
- (if (= @language "deutsch")
- (
- (SET Intro "Wilkommen zum Installer-Script für Filer")
- (SET Where "Wohin soll das Filer-Packet hinkopiert werden ?")
- (SET Config "Es existirt eine Demo-Konfiguration. Soll diese übernommen werden ?")
- )
- )
- (if (= @language "english")
- (
- (SET Intro "Welcome to the installer-script for Filer")
- (SET Where "Where do you want to place the Filer-package ?")
- (SET Config "There is a demo-configuration. Do you want to use it ?")
- )
- )
-
- (MESSAGE Intro)
-
- (SET Wutz
- (ASKDIR
- (PROMPT Where)
- (HELP "")
- (DEFAULT "sys:")
- )
- )
-
- (SET DD (TACKON Wutz "Filer"))
-
- (RUN (CAT "makedir \""DD"\""))
-
- (COPYFILES
- (SOURCE ":DiskUtil/Directory/Filer/")
- (DEST DD)
- (INFOS)
- (ALL)
- )
-
- (IF
- (ASKBOOL
- (PROMPT Config)
- (HELP "")
- )
- (
- (COPYFILES
- (SOURCE ":Diskutil/Directory/Filer/Examples/Filer.RC")
- (DEST "s:")
- )
- )
- )
-